home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / Snippets / Development Tools & Languages / AEGestalt / UAEClientCommand.h < prev    next >
Encoding:
Text File  |  1995-02-05  |  805 b   |  42 lines  |  [TEXT/MPS ]

  1. //    UAEClientCommand.h
  2. //     Copyright © 1991-92 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the TAEClientCommand class, the client
  5. //    Apple event class which makes the query over the network to the server
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __UAECLIENTCOMMAND__
  11. #define __UAECLIENTCOMMAND__
  12.  
  13. #ifndef __UAEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17. #ifndef __UAEDOCUMENT__
  18. #include "UAEDocument.h"
  19. #endif
  20.  
  21.  
  22. class TAEDocument;
  23.  
  24. DeclareClassDesc(TAEClientCommand);
  25.  
  26. class TAEClientCommand : public TClientCommand
  27. {
  28.  
  29.     DeclareClass(TAEClientCommand);
  30.  
  31. public:
  32.     TAEClientCommand();
  33.     virtual void IAEClientCommand(CommandNumber,
  34.                                          TAEDocument* ,
  35.                                          AEEventID);
  36.  
  37.     virtual void ProcessReply(TAppleEvent*);
  38.  
  39.     TAEDocument* fDocument;
  40. };
  41.  
  42. #endif